-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
PlatformDetection.Unix.cs
341 lines (304 loc) · 14.7 KB
/
PlatformDetection.Unix.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.IO;
using System.Runtime.InteropServices;
namespace System
{
public static partial class PlatformDetection
{
//
// Do not use the " { get; } = <expression> " pattern here. Having all the initialization happen in the type initializer
// means that one exception anywhere means all tests using PlatformDetection fail. If you feel a value is worth latching,
// do it in a way that failures don't cascade.
//
public static bool IsLinux => RuntimeInformation.IsOSPlatform(OSPlatform.Linux);
public static bool IsOpenSUSE => IsDistroAndVersion("opensuse");
public static bool IsUbuntu => IsDistroAndVersion("ubuntu");
public static bool IsUbuntu2004 => IsDistroAndVersion("ubuntu", 20, 4);
public static bool IsDebian => IsDistroAndVersion("debian");
public static bool IsAlpine => IsDistroAndVersion("alpine");
public static bool IsRaspbian10 => IsDistroAndVersion("raspbian", 10);
public static bool IsMariner => IsDistroAndVersion("mariner");
public static bool IsSLES => IsDistroAndVersion("sles");
public static bool IsTizen => IsDistroAndVersion("tizen");
public static bool IsFedora => IsDistroAndVersion("fedora");
public static bool IsLinuxBionic => IsBionic();
public static bool IsRedHatFamily => IsRedHatFamilyAndVersion();
public static bool IsMonoLinuxArm64 => IsMonoRuntime && IsLinux && IsArm64Process;
public static bool IsNotMonoLinuxArm64 => !IsMonoLinuxArm64;
// OSX family
public static bool IsApplePlatform => IsOSX || IsiOS || IstvOS || IsMacCatalyst;
public static bool IsOSX => RuntimeInformation.IsOSPlatform(OSPlatform.OSX);
public static bool IsNotOSX => !IsOSX;
public static bool IsMacOsAppleSilicon => IsOSX && IsArm64Process;
public static bool IsNotMacOsAppleSilicon => !IsMacOsAppleSilicon;
public static bool IsAppSandbox => Environment.GetEnvironmentVariable("APP_SANDBOX_CONTAINER_ID") != null;
public static bool IsNotAppSandbox => !IsAppSandbox;
public static Version OpenSslVersion => !IsApplePlatform && !IsWindows && !IsAndroid ?
GetOpenSslVersion() :
throw new PlatformNotSupportedException();
private static readonly Version s_openssl3Version = new Version(3, 0, 0);
public static bool IsOpenSsl3 => !IsApplePlatform && !IsWindows && !IsAndroid && !IsBrowser ?
GetOpenSslVersion() >= s_openssl3Version :
false;
/// <summary>
/// If gnulibc is available, returns the release, such as "stable".
/// Otherwise returns "glibc_not_found".
/// </summary>
public static string LibcRelease
{
get
{
if (IsWindows)
{
return "glibc_not_found";
}
try
{
return Marshal.PtrToStringAnsi(libc.gnu_get_libc_release());
}
catch (Exception e) when (e is DllNotFoundException || e is EntryPointNotFoundException)
{
return "glibc_not_found";
}
}
}
/// <summary>
/// If gnulibc is available, returns the version, such as "2.22".
/// Otherwise returns "glibc_not_found". (In future could run "ldd -version" for musl)
/// </summary>
public static string LibcVersion
{
get
{
if (IsWindows)
{
return "glibc_not_found";
}
try
{
return Marshal.PtrToStringAnsi(libc.gnu_get_libc_version());
}
catch (Exception e) when (e is DllNotFoundException || e is EntryPointNotFoundException)
{
return "glibc_not_found";
}
}
}
public static bool OpenSslPresentOnSystem
{
get
{
if (IsWindows || IsAndroid || UsesMobileAppleCrypto || IsBrowser)
{
return false;
}
return Interop.OpenSslNoInit.OpenSslIsAvailable;
}
}
private static Version s_opensslVersion;
private static Version GetOpenSslVersion()
{
if (s_opensslVersion == null)
{
// OpenSSL version numbers are encoded as
// 0xMNNFFPPS: major (one nybble), minor (one byte, unaligned),
// "fix" (one byte, unaligned), patch (one byte, unaligned), status (one nybble)
//
// e.g. 1.0.2a final is 0x1000201F
//
// Currently they don't exceed 29-bit values, but we use long here to account
// for the expanded range on their 64-bit C-long return value.
long versionNumber = Interop.OpenSsl.OpenSslVersionNumber();
int major = (int)((versionNumber >> 28) & 0xF);
int minor = (int)((versionNumber >> 20) & 0xFF);
int fix = (int)((versionNumber >> 12) & 0xFF);
s_opensslVersion = new Version(major, minor, fix);
}
return s_opensslVersion;
}
private static Version ToVersion(string versionString)
{
// In some distros/versions we cannot discover the distro version; return something valid.
// Pick a high version number, since this seems to happen on newer distros.
if (string.IsNullOrEmpty(versionString))
{
versionString = new Version(Int32.MaxValue, Int32.MaxValue).ToString();
}
try
{
if (versionString.IndexOf('.') != -1)
return new Version(versionString);
// minor version is required by Version
// let's default it to 0
return new Version(int.Parse(versionString), 0);
}
catch (Exception exc)
{
throw new FormatException($"Failed to parse version string: '{versionString}'", exc);
}
}
/// <summary>
/// Assume that Android environment variables but Linux OS mean Android libc
/// </summary>
private static bool IsBionic()
{
if (IsLinux)
{
if (!String.IsNullOrEmpty(Environment.GetEnvironmentVariable("ANDROID_STORAGE")))
{
return true;
}
}
return false;
}
private static DistroInfo GetDistroInfo()
{
DistroInfo result = new DistroInfo();
if (IsFreeBSD)
{
result.Id = "FreeBSD";
// example:
// FreeBSD 11.0-RELEASE-p1 FreeBSD 11.0-RELEASE-p1 #0 r306420: Thu Sep 29 01:43:23 UTC 2016 root@releng2.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC
// What we want is major release as minor releases should be compatible.
result.VersionId = ToVersion(RuntimeInformation.OSDescription.Split()[1].Split('.')[0]);
}
else if (Isillumos)
{
// examples:
// on OmniOS
// SunOS 5.11 omnios-r151018-95eaa7e
// on OpenIndiana Hipster:
// SunOS 5.11 illumos-63878f749f
// on SmartOS:
// SunOS 5.11 joyent_20200408T231825Z
string versionDescription = RuntimeInformation.OSDescription.Split(' ')[2];
switch (versionDescription)
{
case string version when version.StartsWith("omnios"):
result.Id = "OmniOS";
result.VersionId = ToVersion(version.Substring("omnios-r".Length, 2)); // e.g. 15
break;
case string version when version.StartsWith("joyent"):
result.Id = "SmartOS";
result.VersionId = ToVersion(version.Substring("joyent_".Length, 4)); // e.g. 2020
break;
case string version when version.StartsWith("illumos"):
result.Id = "OpenIndiana";
// version-less
break;
}
}
else if (IsSolaris)
{
// example:
// SunOS 5.11 11.3
result.Id = "Solaris";
// we only need the major version; 11
result.VersionId = ToVersion(RuntimeInformation.OSDescription.Split(' ')[2].Split('.')[0]); // e.g. 11
}
else if (File.Exists("/etc/os-release"))
{
foreach (string line in File.ReadAllLines("/etc/os-release"))
{
if (line.StartsWith("ID=", StringComparison.Ordinal))
{
result.Id = line.Substring(3).Trim('"', '\'');
}
else if (line.StartsWith("VERSION_ID=", StringComparison.Ordinal))
{
result.VersionId = ToVersion(line.Substring(11).Trim('"', '\''));
}
}
}
result.Id ??= "Linux";
result.VersionId ??= ToVersion(string.Empty);
return result;
}
private static bool IsRedHatFamilyAndVersion(int major = -1, int minor = -1, int build = -1, int revision = -1)
{
return IsDistroAndVersion((distro) => distro == "rhel" || distro == "centos", major, minor, build, revision);
}
/// <summary>
/// Get whether the OS platform matches the given Linux distro and optional version.
/// </summary>
/// <param name="distroId">The distribution id.</param>
/// <param name="major">The distro major version. If omitted, this portion of the version is not included in the comparison.</param>
/// <param name="minor">The distro minor version. If omitted, this portion of the version is not included in the comparison.</param>
/// <param name="build">The distro build version. If omitted, this portion of the version is not included in the comparison.</param>
/// <param name="revision">The distro revision version. If omitted, this portion of the version is not included in the comparison.</param>
/// <returns>Whether the OS platform matches the given Linux distro and optional version.</returns>
private static bool IsDistroAndVersion(string distroId, int major = -1, int minor = -1, int build = -1, int revision = -1)
{
return IsDistroAndVersion(distro => (distro == distroId), major, minor, build, revision);
}
/// <summary>
/// Get whether the OS platform matches the given Linux distro and optional version is same or higher.
/// </summary>
/// <param name="distroId">The distribution id.</param>
/// <param name="major">The distro major version. If omitted, this portion of the version is not included in the comparison.</param>
/// <param name="minor">The distro minor version. If omitted, this portion of the version is not included in the comparison.</param>
/// <param name="build">The distro build version. If omitted, this portion of the version is not included in the comparison.</param>
/// <param name="revision">The distro revision version. If omitted, this portion of the version is not included in the comparison.</param>
/// <returns>Whether the OS platform matches the given Linux distro and optional version is same or higher.</returns>
private static bool IsDistroAndVersionOrHigher(string distroId, int major = -1, int minor = -1, int build = -1, int revision = -1)
{
return IsDistroAndVersionOrHigher(distro => (distro == distroId), major, minor, build, revision);
}
private static bool IsDistroAndVersion(Predicate<string> distroPredicate, int major = -1, int minor = -1, int build = -1, int revision = -1)
{
if (IsLinux)
{
DistroInfo v = GetDistroInfo();
if (distroPredicate(v.Id) && VersionEquivalentTo(major, minor, build, revision, v.VersionId))
{
return true;
}
}
return false;
}
private static bool IsDistroAndVersionOrHigher(Predicate<string> distroPredicate, int major = -1, int minor = -1, int build = -1, int revision = -1)
{
if (IsLinux)
{
DistroInfo v = GetDistroInfo();
if (distroPredicate(v.Id) && VersionEquivalentToOrHigher(major, minor, build, revision, v.VersionId))
{
return true;
}
}
return false;
}
private static bool VersionEquivalentTo(int major, int minor, int build, int revision, Version actualVersionId)
{
return (major == -1 || major == actualVersionId.Major)
&& (minor == -1 || minor == actualVersionId.Minor)
&& (build == -1 || build == actualVersionId.Build)
&& (revision == -1 || revision == actualVersionId.Revision);
}
private static bool VersionEquivalentToOrHigher(int major, int minor, int build, int revision, Version actualVersionId)
{
return
VersionEquivalentTo(major, minor, build, revision, actualVersionId) ||
(actualVersionId.Major > major ||
(actualVersionId.Major == major && (actualVersionId.Minor > minor ||
(actualVersionId.Minor == minor && (actualVersionId.Build > build ||
(actualVersionId.Build == build && (actualVersionId.Revision > revision ||
(actualVersionId.Revision == revision))))))));
}
private struct DistroInfo
{
public string Id { get; set; }
public Version VersionId { get; set; }
}
private static partial class @libc
{
[LibraryImport("libc", SetLastError = true)]
public static unsafe partial uint geteuid();
[LibraryImport("libc")]
public static partial IntPtr gnu_get_libc_release();
[LibraryImport("libc")]
public static partial IntPtr gnu_get_libc_version();
}
}
}